home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / invisi~1 / invisi~2.h < prev    next >
Text File  |  1995-11-25  |  1KB  |  50 lines

  1. //=--------------------------------------------------------------------------=
  2. // InvisiblePPG.H
  3. //=--------------------------------------------------------------------------=
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. //=--------------------------------------------------------------------------=
  11. //
  12. // class declaration for Invisible's property pages.
  13. //
  14. #ifndef _INVISIBLEPROPPAGE_H_
  15.  
  16.  
  17. // kinda need these
  18. //
  19. #include "PropPage.H"
  20. #include "Resource.H"
  21. #include "Guids.H"
  22.  
  23. class CInvisibleGeneralPage : public CPropertyPage {
  24.  
  25.   public:
  26.     static IUnknown *Create(IUnknown *pUnkOuter);
  27.  
  28.     // constructor and destructor
  29.     //
  30.     CInvisibleGeneralPage(IUnknown *pUnkOuter);
  31.     virtual ~CInvisibleGeneralPage();
  32.  
  33.   private:
  34.     virtual BOOL DialogProc(HWND, UINT, WPARAM, LPARAM);
  35.  
  36. };
  37.  
  38. DEFINE_PROPERTYPAGEOBJECT(InvisibleGeneral,
  39.     &CLSID_InvisibleGeneralPage,
  40.     "Invisible General Propery Page",
  41.     CInvisibleGeneralPage::Create,
  42.     IDD_PROPPAGE_INVISIBLEGENERAL,
  43.     IDS_INVISIBLE_GENERALPAGETITLE,
  44.     IDS_INVISIBLE_GENERALDOCSTRING,
  45.     "vb.hlp",
  46.     0);
  47.  
  48. #define _INVISIBLEPROPPAGE_H_
  49. #endif // _INVISIBLEPROPPAGE_H_
  50.